home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 3
/
Gold Medal Software - Volume 3 (Gold Medal) (1994).iso
/
archive
/
cx201e.arj
/
VBBINIO.BAS
< prev
next >
Wrap
BASIC Source File
|
1994-03-01
|
775b
|
16 lines
' BINIO interface.
' Copyright (c) 1990-1994 Eugene Nelson, Four Lakes Computing.
Global Const BINIO_OPEN_READ = 1
Global Const BINIO_OPEN_WRITE = 2
Global Const BINIO_OPEN_CREATE = 3
Declare Function binio_open Lib "BINIO.DLL" (ByVal s$, ByVal m%) As Integer
Declare Function binio_close Lib "BINIO.DLL" (ByVal handle%) As Integer
Declare Function binio_read Lib "BINIO.DLL" (ByVal handle%, buff As Any, ByVal bytes&) As Long
Declare Function binio_write Lib "BINIO.DLL" (ByVal handle%, buff As Any, ByVal bytes&) As Long
Declare Function binio_seek Lib "BINIO.DLL" (ByVal handle%, ByVal ofs&, ByVal where%) As Long
Declare Function binio_tell Lib "BINIO.DLL" (ByVal handle%) As Long
Declare Function binio_length Lib "BINIO.DLL" (ByVal handle%) As Long